home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / ComboBoxEditor.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  405 b   |  19 lines

  1. package javax.swing;
  2.  
  3. import java.awt.Component;
  4. import java.awt.event.ActionListener;
  5.  
  6. public interface ComboBoxEditor {
  7.    void addActionListener(ActionListener var1);
  8.  
  9.    Component getEditorComponent();
  10.  
  11.    Object getItem();
  12.  
  13.    void removeActionListener(ActionListener var1);
  14.  
  15.    void selectAll();
  16.  
  17.    void setItem(Object var1);
  18. }
  19.